@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --primary-color: #CE2029;
  --text-font-color: #232020;
  --visited-link-color: #636363;
  --tagline-color: #5f5f5f;
  --background-color: #f9f9f9;
  --code-bg-color: #e7e7e7;
}

[data-theme=dark] {
  --primary-color: #E94560;
  --text-font-color: #e9e9e9;
  --visited-link-color: #e96f83;
  --tagline-color: #e2e2fb;
  --background-color: #1A1A2E;
  --code-bg-color: #182649;
}
[data-theme=dark] svg {
  filter: invert(100%);
}

html {
  overflow-y: scroll;
  height: 100%;
}

body {
  color: var(--text-font-color);
  background-color: var(--background-color);
  margin: 0 auto;
  text-align: left;
  width: 92%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 576px) {
  body {
    width: 80%;
  }
}
@media (min-width: 768px) {
  body {
    width: 80%;
  }
}
@media (min-width: 992px) {
  body {
    width: 55%;
  }
}
@media (min-width: 1200px) {
  body {
    width: 35%;
  }
}

.content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer {
  padding-bottom: 1em;
}

.logo {
  display: inline-block;
  font-size: 2.6em;
  font-family: "Merriweather", serif;
  margin-top: 0.4em;
  color: var(--primary-color);
  text-decoration: none;
}
.logo:hover {
  text-decoration: underline;
}
@media (min-width: 576px) {
  .logo {
    font-size: 2.8em;
  }
}

nav {
  font-size: 1.3em;
  margin-top: 0.5em;
}
nav ul {
  list-style: none;
  display: inline-block;
  margin-left: 0;
  margin-bottom: 0;
}
nav ul li {
  font-family: "Merriweather", serif;
  float: left;
  text-align: left;
  margin-bottom: 0.2em;
  margin-right: 0.5em;
}
nav ul li a {
  color: var(--primary-color);
}
nav ul li a:visited {
  color: var(--primary-color);
}
nav ul li a.active {
  text-decoration: none;
  color: var(--text-font-color);
}
@media (min-width: 576px) {
  nav {
    font-size: 1.5em;
  }
}
@media (min-width: 768px) {
  nav ul li {
    margin-right: 0.8em;
  }
}

.header-and-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

h1 {
  font-size: 1.6em;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  margin-top: 0.6em;
  margin-bottom: 0.2em;
  font-family: "Merriweather", serif;
}
h1 a {
  color: var(--primary-color);
}
h1 a:visited {
  color: var(--visited-link-color);
}

h2 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  margin-top: 0.6em;
  margin-bottom: 0.2em;
  font-family: "Merriweather", serif;
}

h3 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  margin-top: 0.6em;
  margin-bottom: 0.2em;
  font-family: "Merriweather", serif;
}

.tagline {
  color: var(--tagline-color);
  font-size: 0.9em;
  margin-left: 0.25em;
}

.date {
  color: var(--tagline-color);
  font-size: 0.9em;
  margin-top: -0.4em;
  margin-bottom: 0.8em;
}

.info {
  color: var(--tagline-color);
  font-size: 0.9em;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 2em;
}

ul {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 1em;
  line-height: 1.5;
}
ul li {
  font-size: 1em;
  font-family: "Open Sans", sans-serif;
  color: var(--text-font-color);
  text-align: left;
}
@media (min-width: 576px) {
  ul li {
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  ul li {
    font-size: 1.1em;
  }
}
@media (min-width: 992px) {
  ul li {
    font-size: 1.1em;
  }
}
ul li a {
  color: var(--primary-color);
  overflow-wrap: break-word;
}
ul li a:hover {
  text-decoration: underline;
}
ul li a:visited {
  color: var(--visited-link-color);
}

ul.books-list {
  margin-bottom: 1.5em;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 1em;
}
@media (min-width: 576px) {
  p {
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  p {
    font-size: 1.1em;
  }
}
@media (min-width: 992px) {
  p {
    font-size: 1.1em;
    line-height: 1.5;
  }
}
p a {
  color: var(--primary-color);
  overflow-wrap: break-word;
}
p a:hover {
  text-decoration: underline;
}
p a:visited {
  color: var(--visited-link-color);
}
p b {
  color: var(--text-font-color);
  font-weight: bold;
}

b {
  font-weight: bold;
}

i {
  font-style: italic;
}

hr {
  border: 0;
  height: 1px;
  width: 100%;
  background-color: var(--text-font-color);
  opacity: 0.2;
  margin-bottom: 1em;
}

.read_more {
  /* The display:table property makes the link not take up the whole line */
  display: table;
  text-align: left;
  margin-top: 0.6em;
}

.back {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  color: var(--background-color);
  background-color: var(--primary-color);
  border-radius: 0.3em;
  padding: 0.05em 0.3em;
  border: solid;
  border-width: 0.15em;
  border-color: var(--primary-color);
  margin-bottom: 0.7em;
}
.back:hover {
  cursor: pointer;
  text-decoration: none;
  color: var(--primary-color);
  background-color: var(--background-color);
  border-color: var(--text-font-color);
}

code {
  color: var(--text-font);
  background-color: var(--code-bg-color);
  font-family: "Source Code Pro", monospace;
  font-size: 1em;
  line-height: 1.4;
  border-radius: 0.5em;
  padding-top: 0.4em;
  padding-bottom: 0.4em;
  padding-left: 0.7em;
  padding-right: 0.7em;
  margin-bottom: 1em;
  display: block;
  overflow-x: auto;
  white-space: nowrap;
}

.inline-code {
  color: var(--text-font);
  background-color: var(--code-bg-color);
  font-family: "Source Code Pro", monospace;
  font-size: 0.95em;
  padding: 0.1em 0.3em;
  display: inline;
  border-radius: 0.4em;
  white-space: nowrap;
}

blockquote {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  font-size: 1em;
  margin: 0 auto;
  width: 90%;
  margin-bottom: 1em;
  line-height: 1.8;
}
@media (min-width: 768px) {
  blockquote {
    font-size: 1.1em;
  }
}
@media (min-width: 992px) {
  blockquote {
    font-size: 1.1em;
    line-height: 1.5;
  }
}

.pagination_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}
.pagination_row a {
  color: var(--primary-color);
  text-decoration: none;
  border: var(--primary-color);
  border-style: solid;
  border-radius: 0.5em;
  border-width: 0.12em;
  padding: 0.1em 0.5em;
}
.pagination_row a:hover {
  text-decoration: underline;
}
.pagination_row a:visited {
  color: var(--primary-color);
}
@media (min-width: 768px) {
  .pagination_row a {
    font-weight: bold;
    border-width: 0.13em;
  }
}

.pagination_column_right {
  text-align: right;
}

.width-50 {
  width: 50%;
}

svg {
  padding-top: 1em;
  padding-bottom: 2.5em;
  display: block;
  margin: 0 auto;
  width: 80%;
}

#theme-button {
  text-transform: capitalize;
  padding: 0.2em 0.4em;
  float: right;
  font-weight: bold;
}
@media (min-width: 768px) {
  #theme-button {
    font-weight: normal;
  }
}

.copyright {
  display: inline;
  padding: 0;
}

/*# sourceMappingURL=styles.css.map */
